home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Dec / di9812me / PluginSample / 2 / shell2 / Shell.dpr < prev    next >
Encoding:
Text File  |  1998-03-23  |  239 b   |  16 lines

  1. program Shell;
  2.  
  3. uses
  4.   Sharemem,
  5.   Forms,
  6.   main in 'main.pas' {frmMain},
  7.   common in '..\Common\common.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TfrmMain, frmMain);
  14.   Application.Run;
  15. end.
  16.